home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet multimedia
/
Animacje, filmy i prezentacje
/
Odtwarzacze filmow
/
JahPlayer 0.1.0
/
jahplayer-0.1.0-installer.exe
/
openlibraries-0.3.0-runtime.exe
/
shaders
/
passthrough.cg
< prev
next >
Wrap
Text File
|
2006-02-05
|
452b
|
15 lines
// fx - A compositing library representation.
// Copyright (C) 2005-2006 Visual Media FX Ltd.
// Released under the LGPL.
// For more information, see http://www.openlibraries.org.
void main( in float4 v_pos: POSITION, in float2 v_tex: TEXCOORD0,
out float4 v_out_pos: POSITION, out float2 v_out_tex: TEXCOORD0,
const uniform float4x4 model_view_proj )
{
v_out_tex = v_tex;
v_out_pos = mul( model_view_proj, v_pos );
}